/* ----------------- Root Variables ----------------- */
:root {
  --primary-color: #044569;
  --secondary-color: #058F48;
  --primary-shade: #04466967;
  --secondary-shade: #058f4860;

  --bg-color: #fdfdfd;
  --section-bg: #f5f7f9;
  --navbar-bg: #ffffff;
  --border-color: #e0e0e0;

  --text-color: #1a1a1a;
  --secondary-text: #555555;

  --button-bg: var(--primary-color);
  --button-text: #ffffff;
  --button-hover: #033956;
  --link-hover: var(--secondary-color);


  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-bg: rgba(5, 143, 72, 0.5);
  --radius-lg: 16px;
  --radius-xl: 24px;
}

.container-custom {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  /* Increased padding */
  padding-right: 1.5rem;
  /* Increased padding */
}

.lucide {
  display: inline;
  stroke-width: 1.75;
  /* Slightly thicker stroke for icons */
}

/* A subtle geometric pattern to add texture */
.bg-pattern {
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23e0e0e0" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zm0-30V0H4v4H0v2h4v4h2V6h4V4H6z"%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Dark Theme Colors */
/* body   {
  --bg-color: #111111;
  --secondary-bg: #1a1a1a;
  --navbar-bg: #1a1a1a;
  --text-color: #ffffff;
  --secondary-text: #aaaaaa;
  --accent-color: #f1f1f1;
  --button-bg: #ffffff;
  --button-text: #000000;
  --hover-bg: #555555;
} */


/* ----------------- Global Styles ----------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

a {
  text-decoration: none;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Base section style */
/* section {
  padding: 60px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
} */

/* Section background types */
.section-main-bg {
  background-color: var(--bg-color);
}

.section-shade-bg {
  background-color: var(--secondary-bg);
}

/* ==============================
   Trusted Transport - Navbar
   ============================== */


/* Theme Toggle Smooth Transition */
*,
*::before,
*::after {
  transition: all 0.3s ease;
}
/* === Popup Overlay === */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15); /* soft white overlay */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* === When visible (you control this in JS) === */
.popup-overlay[style*="display: flex"] {
    opacity: 1;
    visibility: visible;
}

/* === Popup Box === */
.popup {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    color: #222;
    padding: 24px 36px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
    width: 340px;
    position: relative;
    animation: popupShow 0.35s ease forwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* === Text === */
.popup p {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    margin: 0;
    color: #e63946; /* red for error */
}

/* === Entry Animation === */
@keyframes popupShow {
    from {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}



/* breadcrumb */

.page-hero {
  position: relative;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-color);
  padding: 60px 20px;
  background: var(--bg-color);
}

/* Background image overlay */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/frontend/aboutussec1.jpeg') center/cover no-repeat;
  filter: grayscale(100%) brightness(0.45);
  z-index: 1;
}

/* Extra gradient layer for depth */
.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05), transparent 40%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 2;
  pointer-events: none;
}

/* Breadcrumb */
.breadcrumb {
  position: absolute;
  top: 24px;
  left: 40px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 14px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--secondary-text);
}

.breadcrumb li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumb li a:hover {
  color: var(--text-color);
}

.breadcrumb li span {
  color: #fff;
  font-weight: 600;
}

/* Separator */
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 12px;
  color: var(--secondary-text);
}

/* Center content */
.page-hero-content {
  position: relative;
  z-index: 4;
  max-width: 850px;
}

.page-hero-content h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--bg-color), var(--secondary-text), var(--secondary-color));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite;
}

.page-hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--bg-color);
  max-width: 90%;
  margin: 0 auto;
}

/* Gradient animation for title */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb {
    left: 20px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .page-hero-content p {
    max-width: 100%;
    font-size: 1rem;
  }
}